go/ast.CaseClause.Case (field)

3 uses

	go/ast (current package)
		ast.go#L713: 		Case  token.Pos // position of "case" or "default" keyword
		ast.go#L785: func (s *CaseClause) Pos() token.Pos     { return s.Case }

	go/parser
		parser.go#L2190: 	return &ast.CaseClause{Case: pos, List: list, Colon: colon, Body: body}